defaultvalue: Fix some very broken indentation
authorDaniel Boles <dboles.src@gmail.com>
Fri, 29 Jun 2018 18:57:06 +0000 (19:57 +0100)
committerDaniel Boles <dboles.src@gmail.com>
Fri, 29 Jun 2018 18:57:06 +0000 (19:57 +0100)
and while here, use the more typical : to separate the type and property

testsuite/gtk/defaultvalue.c

index 1f73fa5825fbcc30cbf6a4ed04657e374248f51b..e0e28a485cd44e72ad4bce9f38add9912af37e5a 100644 (file)
@@ -363,9 +363,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS
         continue;
 
       if (g_test_verbose ())
-      g_print ("Property %s.%s\n",
-            g_type_name (pspec->owner_type),
-            pspec->name);
+        {
+          g_print ("Property %s:%s\n",
+                   g_type_name (pspec->owner_type),
+                   pspec->name);
+        }
+
       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
       g_object_get_property (instance, pspec->name, &value);
       check_property ("Property", pspec, &value);